@charset "UTF-8" ;
* {
  margin:0; padding:0;
}
header {
  width: 100%;
  height: 300px;
  padding: 5px 0;
  text-align: center;
  color: #aa5959;
  background-image: url("");
  background-position: center bottom;
  background-size: cover;
}
header .headline{
  line-height: 170px;
  font-size: 60px;
}

.headline a {
  font-size: 90px;
  }

  a {
    color: #aa5959;
    font-family: "Darumadrop One", sans-serif;
    font-size: 20px;
  
  }

  title {
    color: #228b22;
  }


  .nav-list {
    line-height: 100px;
    list-style: none;
    font-weight: bold;
}
.nav-list-item {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  font-size: 25px;
}

.nav-list a {
  font-size: 140%;
  color: #aa5959;
  text-decoration: none;
}

.nav-list a:hover {
 color: #bf360c;
}

h1 {
  font-size: 30px;
}



/*見出し------
--------------------*/
.page-title {
  font-size: 60px;
  text-align: center;
  font-family: "Darumadrop One", sans-serif;
}

/*menu------
--------------------*/

img {
  max-width: 100%;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}


.logo {
  max-width: 30%;
}


.menu-table {
  padding: 24px 18px;
}

.grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 4%;
  margin-bottom: 50px;
}

.item {
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.page-subtitle {
  padding-top: 50px;
  font-size: 30px;
}

.item-detail {
  text-align: center;
  font-size: 18px;
}

.menu-detail {
  text-align: right;
  font-weight: bold;
  padding: 13px;
}

.item-detail b {
  font-size: 23px;
  font-family: "Zen Maru Gothic", system-ui;
}

h3 {
  font-size: 50px;
  color: #228b22;
  font-family: "Zen Maru Gothic", system-ui;
  text-align: center;
  padding: 50px;
}

.item b {
  font-size: 25px;
  font-family:  "Zen Maru Gothic", system-ui;
  color: #228b22;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2つの列を均等に分割 */
  grid-gap: 10px; /* 要素間の余白 */
}

.element {
  /* 各要素のスタイルを設定 */
  padding: 10px;
}



/*footer------
--------------------*/

footer{
    width: 100%;
    height: 220px;
    background-color: #a06d6d82;
    color: white;
    text-align: center;
    font-family:"Zen Maru Gothic", system-ui;
   }

 .abc {
  font-size: 21px;
  font-family:"Zen Maru Gothic", system-ui;
}

.abc a{
  color: #ffffff;
  font-family: "Zen Maru Gothic", system-ui;
  font-size: 21px;
}

ul.footer-menu li {
display: inline;
}

/*--PC--*/
@media screen and (min-width: 1000px) {
  ul li {
    overflow: hidden;
  }

  ul li img {
    width: 200px;
    float: left; /*--フロートを指定--*/
    margin-right: 2em;
  }
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*スマホ対応------
--------------------*/
@media only screen and (max-width: 800px) {
  .main-nav li {
    font-size: 10px;
  }

  header {
    width: 100%;
    height: 200px;
  }
   .headline a {
    font-size: 70px;
    }

  .page-subtitle {
    font-size: 20px;
  }

  .item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 100%;
  }

  .item-detail {
    text-align: center;
    font-size: 18px;
  }
  
  .item img {
    max-width: 70%; 
    max-height: 45%;   /* 空白の大きさ　*/
    top: 60%;    /* 空白の大きさ　*/
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  h3 {
    font-size: 30px;
    padding: 50px;
  }
  
  .item b{
    font-size: 20px;
  }
  

  .main-nav {
    display: none;
  }

  .nav-list-item{
    display: none;
  }

  .Aplaudo-logo {
    width: 25%;
  }

  footer{
    width: 100%;
    height: 160px;
   }

 .abc {
  font-size: 15px;
  font-family:"Zen Maru Gothic", system-ui;
}

.abc a{
  font-size: 15px;
}

.br-sp{
  display: none;
}

@media (max-width: 600px){
  .br-sp{
    display: block;
  }
}
  
}

   /* =================
ハンバーガーボタンの実装
================= */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #aa5959;
}
.menu-btn:hover {
  cursor: pointer;
}

.menu-content a:hover {
  color: #bf360c;
}
/* 三本線の実装 */
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/* チェックボックスを非表示にする */
#menu-btn-check {
  display: none;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(
    255,
    255,
    255,
    0
  ); /*メニューオープン時は真ん中の線を透明にする*/
}

/* メニューを開いている時はハンバーガーボタンが×になる */
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =================
メニュー部分の実装
================= */
.menu-content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  /* メニューを外に出しておく */
  left: 100%;
  z-index: 80;
  background-color: #946a5c;
  transition: all 0.5s; /*アニメーションを滑らかにする*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: "Sen", sans-serif;
}
#menu-btn-check:checked ~ .menu-content {
  left: 30%; /*メニューを画面内へ動かす*/
}

.policy-detail {
  font-size: 15px;
  padding: 20px;
}
}
/*----ハンバーガーメニューの非表示----------*/

@media only screen and (min-width: 800px) {
.hamburger-menu {
  display: none;
}
.menu-content {
  display: none;
}
}